home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / qbwiz13.zip / SOURCE.ZIP / DEFSEG.ASM < prev    next >
Assembly Source File  |  1992-07-14  |  851b  |  36 lines

  1. comment #
  2.  
  3.    +----------------------------------------------------------------------+
  4.    |                                                                      |
  5.    |         QBWiz  Copyright (c) 1990-1992  Thomas G. Hanlin III         |
  6.    |                                                                      |
  7.    |                       QuickBasic Access Library                      |
  8.    |                                                                      |
  9.    +----------------------------------------------------------------------+
  10.  
  11. #
  12.  
  13. public  DEFSEG
  14.  
  15.  
  16. .model medium
  17.  
  18. .code
  19.  
  20.  
  21.  
  22. DEFSEG        proc                     ; get DEF SEG segment
  23.               mov            ax,b$seg
  24.               ret
  25. DEFSEG        endp                     ; get DEF SEG segment
  26.  
  27.  
  28.  
  29. .data
  30.  
  31. extrn  b$seg: word
  32.  
  33.  
  34.  
  35.               end
  36.